home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / seteuid.c,v < prev    next >
Text File  |  1988-06-27  |  593b  |  41 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.27.11.45.19;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * Copyright (c) 1983 Regents of the University of California.
  26.  * All rights reserved.  The Berkeley software License Agreement
  27.  * specifies the terms and conditions for redistribution.
  28.  */
  29.  
  30. #if defined(LIBC_SCCS) && !defined(lint)
  31. static char sccsid[] = "@@(#)seteuid.c    5.2 (Berkeley) 3/9/86";
  32. #endif LIBC_SCCS and not lint
  33.  
  34. seteuid(euid)
  35.     int euid;
  36. {
  37.  
  38.     return (setreuid(-1, euid));
  39. }
  40. @
  41.